home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040930.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  63 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(15420);
  10.  script_version ("$Revision: 1.3 $");
  11.  script_bugtraq_id(11322, 11324);
  12.  script_cve_id("CAN-2004-0921", "CAN-2004-0922", "CAN-2004-0558", "CAN-2004-0923", "CAN-2004-0924", "CAN-2004-0925", "CAN-2004-0926", "CAN-2004-0927");
  13.  script_bugtraq_id(11207);
  14.  name["english"] = "Security Update 2004-09-30";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is missing Security Update 2004-09-30. This security
  20. update contains a number of enhancement for the following programs :
  21.  
  22. - AFP Server
  23. - CUPS
  24. - NetInfoManager
  25. - postfix
  26. - QuickTime
  27. - ServerAdmin
  28.  
  29. These vulnerabilities may allow an attacker to cause a denial of service
  30. of the remote service, to execute arbitrary code on the remote host
  31. and to write to several files.
  32.  
  33. Solution : http://docs.info.apple.com/article.html?artnum=61798
  34. Risk factor : High";
  35.  
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Check for Security Update 2004-09-30";
  40.  script_summary(english:summary["english"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  45.  family["english"] = "MacOS X Local Security Checks";
  46.  script_family(english:family["english"]);
  47.  
  48.  script_dependencies("ssh_get_info.nasl");
  49.  script_require_keys("Host/MacOSX/packages");
  50.  exit(0);
  51. }
  52.  
  53.  
  54. packages = get_kb_item("Host/MacOSX/packages");
  55. if ( ! packages ) exit(0);
  56.  
  57. uname = get_kb_item("Host/uname");
  58. # MacOS X 10.2.8, 10.3.5 only
  59. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.5\.)", string:uname) )
  60. {
  61.   if ( ! egrep(pattern:"^SecUpd(Srvr)?2004-09-30", string:packages) ) security_hole(0);
  62. }
  63.